DicomObjects.NET Core Documentation
DicomObjects Namespace / DicomDataSet Class / Write Method / Write(Byte[]) Method

The byte array to write dataset to




In This Topic
    Write(Byte[]) Method
    In This Topic
    Writes the dataset to a byte array
    Syntax
    'Declaration
     
    
    Public Overloads Sub Write( _
       ByRef Array() As Byte _
    ) 
    'Usage
     
    
    Dim instance As DicomDataSet
    Dim Array() As Byte
     
    instance.Write(Array)
    public void Write( 
       out byte[] Array
    )
    public:
    void Write( 
       [Out] array<byte>^ Array
    ) 

    Parameters

    Array

    The byte array to write dataset to

    Remarks

    Data may subsequently be read by the Read method or by other DICOM software.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also